home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ccdl150l.zip / IO / FSETPOS.C < prev    next >
C/C++ Source or Header  |  1996-06-24  |  184b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. int fsetpos(FILE *stream, const fpos_t *currentpos)
  4. {
  5.     if (stream->token == FILTOK)
  6.         stream->flags &= ~_F_EOF;
  7.     return fseek(stream,*currentpos,SEEK_SET);
  8. }